[IA64] Some noisy traces removed.
authorawilliam@xenbuild.aw <awilliam@xenbuild.aw>
Wed, 8 Mar 2006 00:14:32 +0000 (17:14 -0700)
committerawilliam@xenbuild.aw <awilliam@xenbuild.aw>
Wed, 8 Mar 2006 00:14:32 +0000 (17:14 -0700)
Useless and commented-out code removed.

Signed-off-by: Tristan Gingold <tristan.gingold@bull.net>
xen/arch/ia64/linux-xen/smpboot.c
xen/arch/ia64/xen/domain.c
xen/arch/ia64/xen/vcpu.c
xen/arch/ia64/xen/xensetup.c

index d75cd58f960b8aace0f4e5ef65ba05cc2c2e010b..0b4f1d0f54f553d33d6bd13e6107977335b4a8bf 100644 (file)
@@ -72,8 +72,7 @@ EXPORT_SYMBOL(cpu_online_map);
 
 #ifdef CONFIG_SMP /* ifdef XEN */
 
-//#define SMP_DEBUG 0
-#define SMP_DEBUG 1
+#define SMP_DEBUG 0
 
 #if SMP_DEBUG
 #define Dprintk(x...)  printk(x)
index db671353839e070ed689fcbe918855cd64cb33b0..e6f16d0cbdc66f60f7ee348452daf8353dc130ff 100644 (file)
@@ -118,20 +118,7 @@ void startup_cpu_idle_loop(void)
        int cpu = smp_processor_id ();
        /* Just some sanity to ensure that the scheduler is set up okay. */
        ASSERT(current->domain == IDLE_DOMAIN_ID);
-       printf ("idle%dA\n", cpu);
        raise_softirq(SCHEDULE_SOFTIRQ);
-#if 0   /* All this work is done within continue_cpu_idle_loop  */
-       printf ("idle%dB\n", cpu);
-       asm volatile ("mov ar.k2=r0");
-       do_softirq();
-       printf ("idle%dC\n", cpu);
-
-       /*
-        * Declares CPU setup done to the boot processor.
-        * Therefore memory barrier to ensure state is visible.
-        */
-       smp_mb();
-#endif
 #if 0
 //do we have to ensure the idle task has a shared page so that, for example,
 //region registers can be loaded from it.  Apparently not...
index a236e2dd2a6f691345647e6407548435a6ae4bcd..7eb8c8e7aceff51ad9a556b216c8b3d077cc604c 100644 (file)
@@ -1850,7 +1850,6 @@ IA64FAULT vcpu_fc(VCPU *vcpu, UINT64 vadr)
        UINT64 mpaddr, paddr;
        IA64FAULT fault;
        unsigned long translate_domain_mpaddr(unsigned long);
-       IA64FAULT vcpu_tpa(VCPU *, UINT64, UINT64 *);
 
        fault = vcpu_tpa(vcpu, vadr, &mpaddr);
        if (fault == IA64_NO_FAULT) {
index faf59cf0730f11e3690c5a435e613e2a49532f99..2599ef1ec874ef716333bba03883a3afe538fb22 100644 (file)
@@ -331,7 +331,6 @@ printk("num_online_cpus=%d, max_cpus=%d\n",num_online_cpus(),max_cpus);
         if ( num_online_cpus() >= max_cpus )
             break;
         if ( !cpu_online(i) ) {
-printk("About to call __cpu_up(%d)\n",i);
             __cpu_up(i);
        }
     }